home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-06-16 | 1.1 KB | 55 lines | [TEXT/MPS ] |
- #
- # MiniMailer
- # Copyright © 1993, Apple Computer Inc.
- # All rights reserved.
- #
- Src = ":Src:"
- Obj = ":Obj:"
- Objects = ∂
- {Obj}MiniMailer.c.o
-
- #
- # Directory dependencies. "Everything in the
- # {Obj} directory depends on something in the
- # {Src} directory."
- #
- {Obj} ƒ {Src}
-
- #
- # Compiler dependencies -- common to all compilations
- # The idea here is that all sources are stored in
- # the {Src} subdirectory, and all objects (and code
- # resources output by the linker) are stored in the
- # {Obj} subdirectory.
- #
- .c.o ƒ .c ∂
- {Src}MiniMailer.h
- C {COptions} ∂
- -o {TargDir}{Default}.c.o ∂
- {DepDir}{Default}.c
-
- #
- # Build the application
- #
- "MiniMailer MPW" ƒƒ ∂
- MakeFile ∂
- {Src}MiniMailer.h ∂
- {Src}MiniMailer.r
- Rez ∂
- {Src}MiniMailer.r ∂
- -append ∂
- -t APPL ∂
- -i "{CIncludes}" ∂
- -i "{RIncludes}" ∂
- -o "MiniMailer MPW"
-
- "MiniMailer MPW" ƒƒ ∂
- MakeFile ∂
- {Objects}
- Link ∂
- -t APPL ∂
- {Objects} ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o ∂
- -o "MiniMailer MPW"
-